Metadata-Version: 2.1
Name: Recherche Babac2
Version: 0.1.4
Summary: A Python3 module to search the Cycle Babac catalogue and return description, price and availability.
Home-page: http://github.com/normcyr/recherche_babac2
Author: Normand Cyr
Author-email: norm@normandcyr.com
License: GNU GPLv3
Description: # Recherche Babac2
        
        A Python3 module to search the Cycle Babac catalogue and return description, price and availability.
        
        ## Installation
        
        1. Clone the repository
        
        ```bash
        git clone https://github.com/normcyr/recherche_babac2
        ```
        
        2. Create a Python virtual environment using `virtualenv`
        
        ```bash
        cd recherche_babac2
        virtualenv -p python3 venv
        source venv/bin/activate
        ```
        
        3. Install the module
        
        ```bash
        pip install -e .
        ```
        
        ## Setup the configuration file
        
        ```bash
        cp recherche_babac2/.env.example recherche_babac2/.env
        ```
        
        Then edit the `.env` file (**eg** `nano recherche_babac2/.env`) and change the value of the `USERNAME` and `PASSWORD` variables to the proper credentials to log in to the Cycle Babac website.
        
        ## Perform a search
        
        Launch the search with the following command:
        
        ```bash
        recherche_babac2 search text
        ```
        
        For example:
        
        ```bash
        recherche_babac2 training wheels
        ```
        
        or, using a catalogue number:
        
        ```bash
        recherche_babac2 22-150
        ```
        
Keywords: bicycle babac parts repair diy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.5
Description-Content-Type: text/markdown
